From 396cd167e0cf66f8a1fff3d30d366533e9b12e65 Mon Sep 17 00:00:00 2001 From: Michael Keppler Date: Mon, 12 Jun 2023 20:58:02 +0200 Subject: [PATCH] remove prompt from code blocks People are used to copying the complete block from the documentation, and then the prompt will lead to syntax errors. --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f0b07711bb..9726188e2c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -39,7 +39,7 @@ The Eclipse Collections build requires below as dependencies. The Eclipse Collections build performs code generation to create primitive collections. Run the full build once before opening your IDE. ```bash -$ mvn install -DskipTests=true +mvn install -DskipTests=true ``` Now you can open the project in your IDE and it won't complain about missing files. You'll be able to use the IDE to perform incremental builds and run tests. You should rarely need to run the maven build, except when: @@ -68,7 +68,7 @@ Coding Style Eclipse Collections follows a coding style that is similar to [Google's Style Guide for Java][style-guide], but with curly braces on their own lines. Many aspects of the style guide are enforced by CheckStyle, but not all, so please take care. ```bash -$ mvn clean install checkstyle:check --projects "!scala-unit-tests,!jmh-scala-tests,!jmh-tests" -DskipTests=true +mvn clean install checkstyle:check --projects "!scala-unit-tests,!jmh-scala-tests,!jmh-tests" -DskipTests=true ``` Avoid changing whitespace on lines that are unrelated to your pull request. This helps preserve the accuracy of the git blame view, and makes code reviews easier.