diff --git a/README.md b/README.md
index 6f5d84c..b4e45f9 100644
--- a/README.md
+++ b/README.md
@@ -234,13 +234,13 @@ Railway Oriented Programming (ROP) is a functional programming pattern that faci
ResultBoxes supports ROP by providing chain method to connect functions and simply write error handling code.
-![Simple ROP](https://github.com/J-Tech-Japan/ResultBoxes/raw/main/docs/images/SimpleRop.png)
+![Simple ROP](https://raw.githubusercontent.com/J-Tech-Japan/ResultBoxes/main/docs/images/SimpleRop.png)
Like example below, you can use `Conveyor(nextFunction)` to method chain continuous functions.
It is like Result"Box" are carrying through Belt Conveyor and moving next checkpoint, at next checkpoint, contents will be adjusted and pack with different form, and also if error happens, it will convert to the Error Result.
-![conveyor image](https://github.com/J-Tech-Japan/ResultBoxes/raw/main/docs/images/conveyer.jpg)
+![conveyor image](https://raw.githubusercontent.com/J-Tech-Japan/ResultBoxes/main/docs/images/conveyer.jpg)
If first method , in example `Increment` returns Exception, following functions `Double` and `Triple` will not executed, it will be just passing Exception that returned by `Increment`. If first method returns value, second method, in this case `Double` will be execute, and if all three method succeed, `Main` method receive the result value. If any methods returns Exception Result, it will return Exception to the `Main` function.
@@ -427,7 +427,7 @@ internal class Program
We have cases that need to prepare 2 or more value and pass it to next function. One way to achieve this is, programmer make a wrapping function and gather two value in function and use railway to handle results. But ResultBoxes provide `CombineValue` methods, which follows first Result, run second function and instead of passing only last executed value, but both first value and second value together and pass it to third function.
-![CombineValue](https://github.com/J-Tech-Japan/ResultBoxes/raw/main/docs/images/CombineValue.png)
+![CombineValue](https://raw.githubusercontent.com/J-Tech-Japan/ResultBoxes/main/docs/images/CombineValue.png)
We provide
[TwoValues](https://github.com/J-Tech-Japan/ResultBoxes/blob/main/src/ResultBoxes/ResultBoxes/TwoValues.cs),
diff --git a/src/ResultBoxes/ResultBoxes/ResultBoxes.csproj b/src/ResultBoxes/ResultBoxes/ResultBoxes.csproj
index 3d83672..46f7734 100644
--- a/src/ResultBoxes/ResultBoxes/ResultBoxes.csproj
+++ b/src/ResultBoxes/ResultBoxes/ResultBoxes.csproj
@@ -7,12 +7,12 @@
ResultBoxes
preview
ResultBoxes
- 0.3.18
+ 0.3.19
J-Tech Group
J-Tech-Japan
ResultBoxes - C# Results Library that focus on Railway Programming.
https://github.com/J-Tech-Japan/ResultBoxes
- 0.3.18
+ 0.3.19
Conveyer, Verify can take no param. Verify can take Task and Result
true
README.md