0
0
Fork 0
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:
Rob Waller 2020-09-21 13:01:25 +01:00 committed by GitHub
parent d1b88510cf
commit 333462b9c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 12 additions and 12 deletions

View file

@ -1,4 +1,4 @@
# Fetch Data
# Fetch data
## Concepts

View file

@ -1,4 +1,4 @@
# Hello World
# Hello world
## Concepts

View file

@ -1,4 +1,4 @@
# Import and Export Modules
# Import and export modules
## Concepts

View file

@ -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 {

View file

@ -1,4 +1,4 @@
# Read and Write Files
# Read and write files
## Concepts

View file

@ -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",