mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 09:31:22 -05:00
docs: titles in examples should be sentence case (#7609)
This commit is contained in:
parent
d1b88510cf
commit
333462b9c2
6 changed files with 12 additions and 12 deletions
|
@ -1,4 +1,4 @@
|
|||
# Fetch Data
|
||||
# Fetch data
|
||||
|
||||
## Concepts
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Hello World
|
||||
# Hello world
|
||||
|
||||
## Concepts
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Import and Export Modules
|
||||
# Import and export modules
|
||||
|
||||
## Concepts
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Managing Dependencies
|
||||
# Managing dependencies
|
||||
|
||||
## Concepts
|
||||
|
||||
|
@ -30,8 +30,8 @@ clean separation between dev only and production dependencies.
|
|||
|
||||
```ts
|
||||
/**
|
||||
* deps.ts
|
||||
*
|
||||
* deps.ts
|
||||
*
|
||||
* This module re-exports the required methods from the dependant remote Ramda module.
|
||||
**/
|
||||
export {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Read and Write Files
|
||||
# Read and write files
|
||||
|
||||
## Concepts
|
||||
|
||||
|
|
|
@ -40,11 +40,11 @@
|
|||
"examples": {
|
||||
"name": "Examples",
|
||||
"children": {
|
||||
"hello_world": "Hello World",
|
||||
"import_export": "Import and Export Modules",
|
||||
"manage_dependencies": "Manage Dependencies",
|
||||
"fetch_data": "Fetch Data",
|
||||
"read_write_files": "Read and Write Files",
|
||||
"hello_world": "Hello world",
|
||||
"import_export": "Import and export modules",
|
||||
"manage_dependencies": "Manage dependencies",
|
||||
"fetch_data": "Fetch data",
|
||||
"read_write_files": "Read and write files",
|
||||
"unix_cat": "Unix cat program",
|
||||
"http_server": "HTTP web server",
|
||||
"file_server": "File server",
|
||||
|
|
Loading…
Add table
Reference in a new issue