From c860a5eabd9f9ab766a6db8a877375259bdcc9d3 Mon Sep 17 00:00:00 2001 From: tatiana-kondakova Date: Mon, 24 Jul 2017 18:06:17 +0300 Subject: [PATCH] Review fixes --- routing_common/vehicle_model.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/routing_common/vehicle_model.hpp b/routing_common/vehicle_model.hpp index 84214f79a6..c44034f5dc 100644 --- a/routing_common/vehicle_model.hpp +++ b/routing_common/vehicle_model.hpp @@ -37,10 +37,10 @@ public: virtual bool IsOneWay(FeatureType const & f) const = 0; - /// @returns true if feature |f| can be used for routing with corresponding vehicle model. + /// @returns true iff feature |f| can be used for routing with corresponding vehicle model. virtual bool IsRoad(FeatureType const & f) const = 0; - /// @returns true if feature |f| can be used for transit with corresponding vehicle model. + /// @returns true iff feature |f| can be used for transit with corresponding vehicle model. virtual bool IsTransitAllowed(FeatureType const & f) const = 0; };