Commit Graph

5558 Commits

Author SHA1 Message Date
Amru Eliwat
28a62c0d3c Corrected small spelling error 2016-10-30 22:57:39 -04:00
Amru Eliwat
87cb771547 Changed spelling of 'favourite' to use US english 2016-10-30 22:54:18 -04:00
Amru Eliwat
8e51d5b5c2 Fixed a few spelling errors 2016-10-30 22:51:19 -04:00
Yi Hong Ang
9ca9e466a7 Add new reading resources on MATLAB 2016-10-31 10:47:59 +08:00
Amru Eliwat
850aae6ed5 Fixed confusing typo 2016-10-30 22:40:42 -04:00
Amru Eliwat
2657960b5d Fixed small typo 2016-10-30 22:33:04 -04:00
Eric McCormick
0401e0d5f0 fixes bullet/list issues in AngularJS markdown (#2534)
There looked to be some confused markdown usage; this has been corrected.
2016-10-31 01:39:49 +01:00
George Gognadze
b95bbd93f0 C/en typo, formatting fixes (#2537)
Space should be removed.
Before:
  // Access struct members with .
After:
  // Access struct members with.
C should be capitalized.
Before:
  // there is no Boolean type in c. We use ints instead.
After:
  // there is no Boolean type in C. We use ints instead.
Before:
Header files are an important part of c as they allow for the connection of c
After:
Header files are an important part of C as they allow for the connection of C
Before:
Header files are syntactically similar to c source files but reside in ".h"
After:
Header files are syntactically similar to C source files but reside in ".h"
Before:
files. They can be included in your c source file by using the precompiler
After:
files. They can be included in your C source file by using the precompiler
Before:
as the c file.
After:
as the C file.
Before:
/* should instead be put in a c file.                                       */
After:
/* should instead be put in a C file.                                       */
Before:
/* Beyond the above elements, other definitions should be left to a c source */
After:
/* Beyond the above elements, other definitions should be left to a C source */
Before:
/* a header file but instead put into separate headers or a c file.          */
After:
/* a header file but instead put into separate headers or a C file.          */
2016-10-31 00:35:31 +01:00
ven
ee26130c4d #2536 2016-10-31 00:34:51 +01:00
Yi Hong Ang
6d351553ac add labeled loop breaking for Javascript (#2539) 2016-10-31 00:33:22 +01:00
Santiago
a98cc99ef7 Adding new Java 8 features (#2543)
* Added info on Java generics in Spanish.

* Adding new Java 8 features

* Removing the section on Generics for the ES-es version
2016-10-31 00:31:48 +01:00
George Gognadze
1f1f59d9b4 c++/en typo, formatting fixes (#2531)
Space should be removed.
before:
// concatenated_tuple becomes = (10, 'A', 1e9, 15, 11, 'A' ,3.14141)
after:
// concatenated_tuple becomes = (10, 'A', 1e9, 15, 11, 'A', 3.14141)
Typo initialize is correct form.
before:
map<char, int> mymap;  // Will initalize the map with key as char and value as int
after:
map<char, int> mymap;  // Will initialize the map with key as char and value as int
Typo corresponding  is correct form.
before:
// To find the value correponsing to a key
after:
// To find the value corresponding to a key
2016-10-30 10:58:59 +01:00
samcv
eef2636106 [perl6] add myself as contributor (#2530) 2016-10-28 22:03:22 +02:00
LanaTim
a191e77c94 DTD Compatibility and XML Schema Definitions (#2529)
DTD Compatibility and XML Schema Definitions
2016-10-28 12:01:57 +02:00
Thibault
9ac2eaa93f [vim/fr-fr] New translation (#2517)
* Added translation in French for the Vim article

* Fixed grammar/typo

* Added required changes
2016-10-28 11:18:36 +02:00
Anton Slukovskiy
bfc9853cf2 Change some text markup, fix broken link and quotes 2016-10-27 16:25:46 +03:00
Andrew Gallasch
1b59bd1097 Merge pull request #2522 from adambard/string-builder-loops
Add StringBuilder usage tip
2016-10-27 23:47:46 +10:30
Andrew Gallasch
70617f16c4 Merge pull request #2527 from adambard/byte-info
Improve Java doc on bytes and chars
2016-10-27 23:39:47 +10:30
Andrew Gallasch
e01c16e568 Update java.html.markdown 2016-10-27 23:38:44 +10:30
Andrew Gallasch
db47ffd5c9 Merge pull request #2526 from adambard/rename-duplicate-var
Rename duplicate fooInt int declaration
2016-10-27 23:23:57 +10:30
Andrew Gallasch
2040dfc83e Rename duplicate fooInt 2016-10-27 23:22:49 +10:30
Gnomino
78a4ae7da9 [jQuery/en] [jQuery/es] Fixes syntax errors (#2525)
* Fixed syntax errors

* Fixes syntax errors
2016-10-27 13:36:08 +02:00
Gnomino
df52fda2e8 [jquery/fr] Adds French translation for jQuery (#2524)
* Adds French translation for jQuery

* Corrects French & JavaScript errors
2016-10-27 12:56:42 +02:00
Gnomino
2bb9cf6d23 Changes ambiguous class name (#2523) 2016-10-27 11:10:13 +02:00
samcv
46a02d6ee2 [perl6] Explain orelse operator, add more information about exceptions, add an Iterables section... (#2505)
* More clear names for the module and variables demonstrating declarators (our) for sub's and a few more details in comments

* $! is only set when we use "try" not when we disarm an exception with or/orelse thanks to ZoffixZnet for the information here provided here: https://rt.perl.org/Ticket/Display.html?id=129923

* Fix the example from the last commit. Some changes in the try/catch paragraph

* Change it so the vim modeline doesn't show up in the final html file(not even as a comment)

* Minor grammar fix

* Add more information about the .exception method and explain how orelse differs from the or operator

* Add link to the Perl6 docs and explain that while the Perl 6 advent calander is a great reference it may be a little older (Posts stopped in Dec of 2015).  Also make the columns fit better to 80 characters

* Fix in issue with a few of the regex examples, where Perl 6 would warn because the spacing was ambiguous. Explain how you must use two spaces between strings so spacing isn't ambiguous or use the :s adverb to make whitespace meaningful explicitly.  Also explain 'm' and using delimiters other than / /

* Improve the readability of the phasers introduction

* Fix the remaining regex that will warn because of ambiguous spacing

* Add an example for ‘quietly’ since it has been implemented now

* Update link for precedence order to point to current documentation

* Add a section on iterables and show examples for using the lazy method

* Some corrections

* Change downloaded filename to .p6 instead of .pl

* Show vertical line for 80 column width in vim modeline

* Update the exceptions section to vendethiel's suggestions
2016-10-27 10:38:21 +02:00
Hughes Perreault
086284b260 A translation of the binary search in french (#2436)
* A translation of the binary search in french

This commit solves issue #2435

* A few modifications to the translation.

issue #2436

* added a space

issue #2436

* i.e. => Par exemple,

issue #2436
2016-10-27 10:15:29 +02:00
Hughes Perreault
15e74d22b5 A translation of dynamic programming in french (#2465)
* A translation of dynamic programming in french

Issue #2464

* few small corrections

voir => le voir, correction du spacing entre "{" "}", ajout d'espaces avant les ":", suppression de  " ``` " inutile, suppression du proverbe

Issue #2465
2016-10-27 10:15:08 +02:00
DemonKart
06bfdc28b0 [Ruby/pt-rb] Add modules explanation as in main file (#1827)
* Update - Modules. Brazilian portuguese translation according to the main version

Signed-off-by: demonkart <alanpcsilva@gmail.com>

* Remove conflict remainings, finally

* Change transaltors order
2016-10-27 10:13:37 +02:00
Andrew Gallasch
bb504b97ca Add StringBuilder usage tip 2016-10-27 09:50:16 +10:30
Nasgul
a0978c90d6 Edit ru translations (#2519)
* Delete unnecessary line on english.

Delete unnecessary line on english.

* Update examples

add new io and func requestServer

* Update go-ru.html.markdown

* Add Late Static Binding

Add Late Static Binding
2016-10-26 22:05:14 +02:00
Peter Kokot
9420a489f9 [php/en] Normalize PHP code style a bit according to PSR-2 (#2518) 2016-10-26 21:14:11 +02:00
samcv
4f43b011ad Fix the xml file which was saved as ISO-8859 or Latin 1 which wasn't being generated before (#2514) 2016-10-26 13:30:00 +02:00
minoriwww
9dd20e7a67 [latex/zh-cn] translation (#2515) 2016-10-26 13:29:28 +02:00
Gnomino
e7257d0c10 [jquery/en] Reorganisation of Part 2 ( Events and Effects ) (#2516)
* Removes repetition

* [jquery] Better organization for Part 2

* [jquery] Re-added click() event and comment

* [jquery] Better word for 'calling'
2016-10-26 13:29:06 +02:00
Luis Custodio
d674a6744d Grammar fixes and update to a more comprehensive linguage to explain concepts. In addition updating the tmux.conf as done on the original doc. (#2512) 2016-10-26 10:20:58 +02:00
Andreas Loizou (LACK3R)
2861de1caa Improved the translation a little bit (#2511)
Fixed a couple grammar mistakes.
2016-10-26 10:20:03 +02:00
Andreas Loizou (LACK3R)
a17682b3e1 [java/el] Modified a sentence in the Greek java documentation (#2510)
I'm the initial translator of the file.  Modified a sentence to make more sense.
2016-10-26 10:19:48 +02:00
samcv
650f0b5451 Remove the byte order mark from the Czech Javascript file. This file… (#2509)
* Remove the byte order mark from the Czech Javascript file.  This file wasn't showing up on the site before but this will fix it :)

* Add info on how to check if a file has a byte order marker to the CONTRIBUTING file

* Fit into 80 columns width
2016-10-26 10:19:06 +02:00
Wooseop Kim
b1d9f3aa90 [yaml/ko-kr]Translate YAML doc (#2488)
* Translate YAML doc

* Add (EN) tags
2016-10-26 10:18:44 +02:00
Tommaso
304439b65c Bring this version up to date with the english one (#2508)
* Bring this version up to date with the english one

The following commits were taken into consideration and translated into italian:
777423dcc5
9ee3a68720
ba06e9af37
c05400477b
e1d2f8c718
375f0c18ae
a9bcaffd36
85adff2c39
451ccaec5b
c60ddc6ef5
a6eb459b61
b238a58c97
e60a7d73e8
db903ac5b6
cdd64ecee3
14c85ba0ff
5bda926dcc
ab1acb1bb2
0049a475ed
a4a7b2dd83
299d064ecf
2c94436824
5f89f277b9
b3b5ece63c
912d546dc7
0387bd30fc
e053806775

* Add myself as a translator
2016-10-25 23:07:19 +02:00
Tommaso
f78b5834a1 Bring this version up to date with the english one (#2507)
The following commits were taken into consideration and translated into italian:
777423dcc5
9ee3a68720
ba06e9af37
c05400477b
e1d2f8c718
375f0c18ae
a9bcaffd36
85adff2c39
451ccaec5b
c60ddc6ef5
a6eb459b61
b238a58c97
e60a7d73e8
db903ac5b6
cdd64ecee3
14c85ba0ff
5bda926dcc
ab1acb1bb2
0049a475ed
a4a7b2dd83
299d064ecf
2c94436824
5f89f277b9
b3b5ece63c
912d546dc7
0387bd30fc
e053806775
2016-10-25 23:04:35 +02:00
Anton
daea2973e6 [vim/ru] Translate Vim doc (#2506)
* [vim/ru] Translate Vim doc

* Add '(EN)' label to links, and replace Arch wiki link with russian version
2016-10-25 22:57:32 +02:00
Wooseop Kim
547174ad4f [json/ko-kr]Translate JSON doc (#2485)
* Translate JSON doc

* Use ko-kr links
2016-10-25 09:50:46 +02:00
Wooseop Kim
eebd96841c [md/ko-kr]Translate Markdown doc (#2486)
* Translate Markdown doc

* Fix typos
2016-10-25 09:39:35 +02:00
Wooseop Kim
946584a6d7 [xml/ko-kr]Translate XML doc (#2487)
* Translate XML doc

* Add (EN) tags
2016-10-25 09:39:05 +02:00
David Lima
1e7d189b69 [asciidoc/pt_br] Translate asciidoc to portuguese (#2504) 2016-10-25 09:23:41 +02:00
Matt Doherty
923721ebf1 [kdb+/en] Added new file for kdb+ (#2502)
* Added file for kdb+

* fixed some grammar
2016-10-24 16:16:58 +02:00
Tommaso
dec92b05fb Bring this version up to date with the english one (#2503)
* Bring this version up to date with the english one

The following commits were taken into consideration and translated into italian:
c3e769e4ac
fd26c8ddfb
19ead59c1f
e6866f5a26
32f18cd992
c805148618
4a1a6857ce
fa2b171008
e1016455d5
1bb2535efd
1d562740f3
281ba5b37a
c50ff92996
47679dfcbe
042ed50381

* Bring this version up to date with the english one

The following commits were taken into consideration and translated into italian:
c3e769e4ac
fd26c8ddfb
19ead59c1f
e6866f5a26
32f18cd992
c805148618
4a1a6857ce
fa2b171008
e1016455d5
1bb2535efd
1d562740f3
281ba5b37a
c50ff92996
47679dfcbe
042ed50381
2016-10-24 14:54:58 +02:00
Andrew Chellis
042ed50381 [c++/en] Fix typo of iterator (#2501)
iteartor -> iterator
2016-10-24 09:43:42 +02:00
ven
4a8c39a21f #2500 followup 2016-10-23 19:25:09 +02:00