docs: Fix typos spanish readme and factory (#1834)

* Fix typos for Spanish README

* Fix typos in the factory example
This commit is contained in:
JCarlos
2021-10-15 12:24:49 -05:00
committed by GitHub
parent 4c5c0fd63e
commit 0ad44ced24
2 changed files with 5 additions and 5 deletions

View File

@ -26,9 +26,9 @@ package com.iluwatar.factory;
import lombok.extern.slf4j.Slf4j;
/**
* Factory is an object for creating other objects, it providing Providing a static method to
* Factory is an object for creating other objects. It provides a static method to
* create and return objects of varying classes, in order to hide the implementation logic
* and makes client code focus on usage rather then objects initialization and management.
* and makes client code focus on usage rather than objects initialization and management.
*
* <p>In this example an alchemist manufactures coins. CoinFactory is the factory class and it
* provides a static method to create different types of coins.