You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ec...@apache.org on 2018/03/22 15:31:33 UTC

[geode-native] branch develop updated: Minor update to CONTRIBUTING.md (#247)

This is an automated email from the ASF dual-hosted git repository.

echobravo pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/develop by this push:
     new ef42f50  Minor update to CONTRIBUTING.md (#247)
ef42f50 is described below

commit ef42f50f1ead9a6505d69a63817a56b920335e0e
Author: M. Oleske <mo...@users.noreply.github.com>
AuthorDate: Thu Mar 22 08:31:31 2018 -0700

    Minor update to CONTRIBUTING.md (#247)
---
 CONTRIBUTING.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 6cb1bdf..5586fb1 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -2,7 +2,7 @@
 This document assumes you have followed the [Apache Geode Code contribution instructions](https://cwiki.apache.org/confluence/display/GEODE/Code+contributions)
 
 ## Building the code
-see (BUILDING.md)
+see [BUILDING.md](BUILDING.md)
 
 ## Next steps
 * Make your changes/add your feature/fix a bug.
@@ -151,7 +151,7 @@ When writing new or refactoring old code please make the following changes.
     should be changed to
     ```c++
     auto car = garage.getCar();
-    if (auto delorean = std::dynamic_cast<Delorean>(car)) {
+    if (auto delorean = std::dynamic_pointer_cast<Delorean>(car)) {
       delorean->setSpeed(88);
     }
     ```

-- 
To stop receiving notification emails like this one, please contact
echobravo@apache.org.