@@ -259,7 +259,7 @@ result is a `ResourceBundle` object. Remarks about informational codes are also
259259valid for the C++ APIs.
260260
261261> :point_right: **Note**: All the data accessing examples in the following
262- > sections use ICU's
262+ > sections use ICU's
263263> [root](https://github.com/unicode-org/icu/blob/master/icu4c/source/data/locales/root.txt)
264264> resource bundle.
265265
@@ -336,7 +336,8 @@ In order to be able to distinguish between resources, one needs to know the type
336336of the resource at hand. To find this out, use the
337337`UResType ures_getType(UResourceBundle* resourceBundle)` API, or the C++ analog
338338`UResType getType(void)`. The `UResType` is an enumeration defined in the
339- [unicode/ures.h](../../../icu4c/source/common/unicode/ures.h) header file.
339+ [unicode/ures.h](https://github.com/unicode-org/icu/blob/master/icu4c/source/common/unicode/ures.h)
340+ header file.
340341
341342> :point_right: **Note**: Indexes of resources in tables do not necessarily
342343> correspond to the order of items in a table. Due to the way binary structure is
@@ -549,7 +550,7 @@ Gets the number of items in a resource. Simple resources always return size 1.
549550| C++ | `UResType getType(void)` |
550551
551552Gets the type of the resource. For a list of resource types, see:
552- [unicode/ures.h](../../.. /icu4c/source/common/unicode/ures.h)
553+ [unicode/ures.h](https://github.com/unicode-org/icu/blob/master /icu4c/source/common/unicode/ures.h)
553554
554555| Language | API |
555556| -------- | ------------------------------------------------ |
@@ -665,7 +666,8 @@ root {
665666}
666667```
667668
668- Binary format is described in the [uresdata.h](../../../icu4c/source/common/uresdata.h)
669+ Binary format is described in the
670+ [uresdata.h](https://github.com/unicode-org/icu/blob/master/icu4c/source/common/uresdata.h)
669671header file.
670672
671673### Resources Syntax
@@ -743,8 +745,11 @@ aVeryLongString:string {
743745```
744746
745747For more examples on syntax, take a look at our resource files for
746- [locales](../../../icu4c/source/data/locales) and [test data](../../../icu4c/source/test/testdata),
747- especially at the [testtypes resource bundle](../../../icu4c/source/test/testdata/testtypes.txt).
748+ [locales](https://github.com/unicode-org/icu/blob/master/icu4c/source/data/locales)
749+ and
750+ [test data](https://github.com/unicode-org/icu/blob/master/icu4c/source/test/testdata),
751+ especially at the
752+ [testtypes resource bundle](https://github.com/unicode-org/icu/blob/master/icu4c/source/test/testdata/testtypes.txt).
748753
749754### Making Your Own Resource Bundles
750755
@@ -795,9 +800,11 @@ steps:
795800
796801Rolling out your own data takes some practice, especially if you want to package
797802it all together. You might want to take a look at how we package data. Good
798- places to start (except of course ICU's own [data](../../../icu4c/source/data/))
799- are [source/test/testdata/](../../../icu4c/source/test/testdata/) and
800- [source/samples/ufortune/resources/](../../../icu4c/source/samples/ufortune/resources/)
803+ places to start (except of course ICU's own
804+ [data](https://github.com/unicode-org/icu/blob/master/icu4c/source/data/)) are
805+ [source/test/testdata/](https://github.com/unicode-org/icu/blob/master/icu4c/source/test/testdata/)
806+ and
807+ [source/samples/ufortune/resources/](https://github.com/unicode-org/icu/blob/master/icu4c/source/samples/ufortune/resources/)
801808directories.
802809
803810Also, here is a sample Windows batch file that does compiling and packing of
0 commit comments