Skip to content

Commit b501d57

Browse files
Ensure documentation links to correct repo (#1273)
Some of the links in the documentation point to outdated forks: https://github.com/hazelcast/hazelcast-cpp-client/blob/a48374e064e87febb3feb274a53170175b80bfdd/README.md?plain=1#L106 Instead they should be relative. --------- Co-authored-by: ihsan demir <[email protected]>
1 parent abc0536 commit b501d57

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,13 @@ cmake --build [build directory]
9797

9898
##### Other Methods
9999

100-
You can also install the hazelcast-cpp-client with [conan](https://conan.io/) and from source code. You can more information from [Reference Manual](https://github.com/akeles85/hazelcast-cpp-client/blob/readme_update/Reference_Manual.md#11-installing).
100+
You can also install the hazelcast-cpp-client with [conan](https://conan.io/) and from source code. You can more information from [Reference Manual](Reference_Manual.md#11-installing).
101101

102102
## Overview
103103

104104
### Usage
105105

106-
There is an example project in the [sample_project](https://github.com/akeles85/hazelcast-cpp-client/tree/readme_update/sample_project) directory. You can run the example as below:
106+
There is an example project in the [sample_project](sample_project) directory. You can run the example as below:
107107

108108
If you use Linux or Mac:
109109

@@ -146,8 +146,8 @@ int main() {
146146

147147
* Distributed, partitioned and queryable in-memory key-value store implementation, called [Map](examples/distributed-map/basic/FillMap.cpp)
148148
* Eventually consistent cache implementation to store a subset of the Map data locally in the memory of the client, called [Near Cache](examples/distributed-map/near-cache)
149-
* Additional data structures and simple messaging constructs such as [Set](examples/distributed-collections/set), [MultiMap](https://github.com/hazelcast/hazelcast-cpp-client/blob/master/examples/distributed-map/multimap/MultimapPut.cpp), [Queue](examples/distributed-collections/blockingqueue), [Topic](examples/distributed-topic)
150-
* Cluster-wide unique ID generator, called [FlakeIdGenerator](https://github.com/hazelcast/hazelcast-cpp-client/tree/master/examples/learning-basics/unique-names)
149+
* Additional data structures and simple messaging constructs such as [Set](examples/distributed-collections/set), [MultiMap](examples/distributed-map/multimap/MultimapPut.cpp), [Queue](examples/distributed-collections/blockingqueue), [Topic](examples/distributed-topic)
150+
* Cluster-wide unique ID generator, called [FlakeIdGenerator](examples/learning-basics/unique-names)
151151
* Distributed, CRDT based counter, called [PNCounter](examples/distributed-primitives/crdt-pncounter)
152152
* Distributed concurrency primitives from CP Subsystem such as [FencedLock](examples/cp/fenced_lock.cpp), [Semaphore](examples/cp/counting_semphore.cpp), [AtomicLong](examples/cp/atomic_long.cpp)
153153
* Integration with [Viridian](https://viridian.hazelcast.com/) (Hazelcast Cloud)

Reference_Manual.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ export hazelcast.client.invocation.timeout.seconds=2
602602

603603
If you set a property both programmatically and via an environment variable, the programmatically set value will be used.
604604

605-
See the [complete list of system properties](https://github.com/hazelcast/hazelcast-cpp-client/blob/master/hazelcast/include/hazelcast/client/client_properties.h), along with their descriptions, which can be used to configure your Hazelcast C++ client.
605+
See the [complete list of system properties](hazelcast/include/hazelcast/client/client_properties.h), along with their descriptions, which can be used to configure your Hazelcast C++ client.
606606

607607
## 1.5. Basic Usage
608608

@@ -757,7 +757,7 @@ You will see this time we add only the sales employees but we get the list all k
757757

758758
## 1.6. Code Samples
759759

760-
See the Hazelcast C++ [code samples](https://github.com/hazelcast/hazelcast-cpp-client/tree/master/examples) for more examples.
760+
See the Hazelcast C++ [code samples](examples) for more examples.
761761

762762
# 2. Features
763763

@@ -1298,8 +1298,8 @@ clientConfig.get_network_config().get_aws_config()
12981298

12991299
You need to enable the discovery by calling the `set_enabled(true)`. You can set your access key and secret in the configuration as shown in this example. You can filter the instances by setting which tags they have or by the security group setting. You can set the region for which the instances will be retrieved from, the default region is `us-east-1`.
13001300

1301-
See [client_aws_config.h](https://github.com/hazelcast/hazelcast-cpp-client/blob/master/hazelcast/include/hazelcast/client/config/client_aws_config.h)
1302-
and [the AWS examples directory](https://github.com/hazelcast/hazelcast-cpp-client/tree/master/examples/aws)
1301+
See [client_aws_config.h](hazelcast/include/hazelcast/client/config/client_aws_config.h)
1302+
and [the AWS examples directory](examples/aws)
13031303
for more details.
13041304

13051305
## 5.8. Enabling Hazelcast Cloud Discovery
@@ -3850,7 +3850,7 @@ Besides your development contributions as explained in the [Development and Test
38503850
38513851
# 11. License
38523852
3853-
[Apache 2 License](https://github.com/hazelcast/hazelcast-cpp-client/blob/master/LICENSE).
3853+
[Apache 2 License](LICENSE).
38543854
38553855
# 12. Copyright
38563856

0 commit comments

Comments
 (0)