Просмотр исходного кода

ABOUT: Minor formatting cleanups

Fix spacing around punctuation.
Expand out acronyms first and add contraction in parens.
Adjust list of built-ins.
Emil Sit 10 лет назад
Родитель
Сommit
ef9bd580ae
1 измененных файлов: 5 добавлений и 8 удалений
  1. 5
    8
      docs/ABOUT.md

+ 5
- 8
docs/ABOUT.md Просмотреть файл

@@ -18,15 +18,12 @@ The language derives much of its syntax from C and C++, but it has fewer low-lev
18 18
 
19 19
 ## Why Learn JAVA?
20 20
 
21
-- JAVA IS EVERYWHERE. It is one of the most sought after programming languages, as it is a standard for enterprise software, web-based content, games and mobile apps, as well as the [Android operating system](https://developer.android.com/index.html). 
22
-
23
-- [Write once, run anywhere](https://en.wikipedia.org/wiki/Write_once,_run_anywhere) policy : Programs written in Java, are compiled into machine-independent bytecodes, so it can run on any Java platform.Basically, Java is [Platform Independent](https://en.wikipedia.org/wiki/Cross-platform#Platform-independent_software)
24
-
25
-- Java has a Rich API:
26
-Java provides [API](https://en.wikipedia.org/wiki/Application_programming_interface)'s(Application Programming Interface) for I/O, networking, utilities, XML parsing, database connections, and many other functions. Standard libraries can be supplemented by open source libraries like Apache Commons, Google Guava and others.
21
+- JAVA IS EVERYWHERE. It is one of the most sought after programming languages. It is a standard for enterprise software, web-based content, games and mobile apps, as well as the [Android operating system](https://developer.android.com/index.html). 
27 22
 
23
+- [Write once, run anywhere](https://en.wikipedia.org/wiki/Write_once,_run_anywhere) policy: Programs written in Java are compiled into machine-independent bytecodes, so it can run on any Java platform. Basically, Java is [Platform Independent](https://en.wikipedia.org/wiki/Cross-platform#Platform-independent_software)
28 24
 
25
+- Java has rich APIs:
26
+Java has built-in [application programming interfaces](https://en.wikipedia.org/wiki/Application_programming_interface) (APIs) for I/O, networking, data structures, concurrency, and many other functions. Standard libraries can be supplemented by open source libraries like Apache Commons, Google Guava, Netty and others.
29 27
 
30 28
 - Standardization:
31
-If you need to write a web/enterprise app, or you need data persistence or you need to do cryptography, no problem! Java is all you require.There are several other standardized stuff in the Java ecosystem, thanks to the [JCP](https://www.jcp.org/en/introduction/overview) (Java Community Process)!
32
-
29
+If you need to write a web/enterprise app, or you need data persistence or you need to do cryptography, no problem! Java is all you require. There are many standard tools/practices that extend the Java ecosystem, thanks to the [Java Community Process](https://www.jcp.org/en/introduction/overview) (JCP)!