Skip to content

Commit fd3617a

Browse files
committed
Merge branch 'feature/docs' into develop
2 parents 5401ada + 20fe03b commit fd3617a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Each project is configured in specific environments, as described below:
1414

1515
- C++ project: C++20 / [CMake](https://cmake.org/) build / [GNU Scientific Library (GSL)](https://www.gnu.org/software/gsl/), [Google Test](https://google.github.io/googletest/), [Google Benchmark](https://github.com/google/benchmark), [fmt](https://github.com/fmtlib/fmt) packages / [vcpkg](https://github.com/microsoft/vcpkg) package manager
1616
- Python project: Python 3.11 / [Poetry](https://python-poetry.org/) build / [NumPy](https://numpy.org/), [SciPy](https://www.scipy.org/), [NetworkX](https://networkx.org/), [pytest](https://docs.pytest.org/), [pytest-benchmark](https://pytest-benchmark.readthedocs.io/en/latest/) packages
17-
- Java project: Java 21 / [Gradle](https://gradle.org/) build / [Guava](https://github.com/google/guava), [JUnit](https://junit.org/), [Java Microbenchmark Harness (JMH)](https://github.com/openjdk/jmh) libraries
17+
- Java project: Java 21 / [Gradle](https://gradle.org/) build / [Google Guava](https://github.com/google/guava), [JUnit](https://junit.org/), [Java Microbenchmark Harness (JMH)](https://github.com/openjdk/jmh) libraries
1818

1919
## Table of Contents
2020

@@ -744,7 +744,7 @@ sort_dict = SortedDict({'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5})
744744
**Java declaration/methods (binary search tree based)**
745745

746746
```java
747-
// TreeMap (based on red-black tree)
747+
// tree map (based on red-black tree)
748748
import java.util.TreeMap;
749749
var map = new TreeMap<Integer, Integer>();
750750
var map = new TreeMap<Integer, Integer>(Collections.reverseOrder());
@@ -754,7 +754,7 @@ keySet(), values(), entrySet(), containsKey("a"), containsValue(1), replace("a",
754754
firstKey(), lastKey(), lowerKey("b"), higherKey("b"), floorKey("b"), ceilingKey("b"),pollFirstEntry(), pollLastEntry(),
755755
headMap("c"), tailMap("c"), subMap("a", "c"), descendingMap(), descendingKeySet()
756756

757-
// treeSet (based on red-black tree)
757+
// tree set (based on red-black tree)
758758
import java.util.TreeSet;
759759
var set = new TreeSet<Integer>();
760760
var set = new TreeSet<Integer>(Collections.reverseOrder());

0 commit comments

Comments
 (0)