docs: Documentation update
Change-Id: I6f916eb822a59e980e8fb1134886c3431755119c
diff --git a/examples/ndn-different-strategy-per-prefix.cpp b/examples/ndn-different-strategy-per-prefix.cpp
index 1609f7b..54789e6 100644
--- a/examples/ndn-different-strategy-per-prefix.cpp
+++ b/examples/ndn-different-strategy-per-prefix.cpp
@@ -30,7 +30,6 @@
using ns3::ndn::AppHelper;
using ns3::ndn::GlobalRoutingHelper;
using ns3::ndn::StrategyChoiceHelper;
-;
/**
* This scenario simulates a grid topology (using PointToPointGrid module)
@@ -95,9 +94,8 @@
std::string prefix2 = "/prefix2";
// Install different forwarding strategies for prefix1, prefix2
- StrategyChoiceHelper strategyChoiceHelper;
- strategyChoiceHelper.InstallAll(prefix1, "/localhost/nfd/strategy/broadcast");
- strategyChoiceHelper.InstallAll(prefix2, "/localhost/nfd/strategy/best-route");
+ StrategyChoiceHelper::InstallAll(prefix1, "/localhost/nfd/strategy/broadcast");
+ StrategyChoiceHelper::InstallAll(prefix2, "/localhost/nfd/strategy/best-route");
// Install NDN applications
AppHelper consumerHelper("ns3::ndn::ConsumerCbr");