Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Use sentence casing in JS nutshell page
  • Loading branch information
Kaiepi committed Jul 27, 2018
1 parent f171ae0 commit 7f99159
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions doc/Language/js-nutshell.pod6
Expand Up @@ -11,7 +11,7 @@ well as major differences in syntax and features.
This is not a tutorial for learning Perl 6; this is a reference for users who
are already at an intermediate to advanced skill level with Node.js.
=head1 Basic Syntax
=head1 Basic syntax
=head2 "Hello, world!"
Expand Down Expand Up @@ -327,7 +327,7 @@ say 1 +^ 1; # 0
say +^1; # -2
=end code
=head3 Custom Operators and Operator Overloading
=head3 Custom operators and operator overloading
Node.js does not allow operator overloading without having to use a Makefile or
build Node.js with a custom version of V8. Perl 6 allows custom operators and
Expand Down Expand Up @@ -367,7 +367,7 @@ say ++$foo; # 0
# TBD
=head2 Control Flow
=head2 Control flow
=comment TODO
Expand All @@ -385,25 +385,25 @@ say ++$foo; # 0
# TBD
=head1 Object-Oriented Programming
=head1 Object-oriented programming
=comment TODO
# TBD
=head1 The Networking API
=head1 The networking API
=comment TODO
# TBD
=head1 The Filesystem API
=head1 The filesystem API
=comment TODO
# TBD
=head1 Modules and Packages
=head1 Modules and packages
=comment TODO
Expand Down

0 comments on commit 7f99159

Please sign in to comment.