# Typo in /learn/factory/0.10/#associations

**URL:** https://discourse.rom-rb.org/t/typo-in-learn-factory-0-10-associations/631
**Category:** Issues
**Created:** [January 2, 2024, 1:03pm UTC](https://discourse.rom-rb.org/t/typo-in-learn-factory-0-10-associations/631 "2024-01-02T13:03:42Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![krzykamil](https://yyz1.discourse-cdn.com/flex029/user_avatar/discourse.rom-rb.org/krzykamil/32/310_2.png) [@krzykamil](https://discourse.rom-rb.org/u/krzykamil)
#### Post date: [January 2, 2024, 1:03pm UTC](https://discourse.rom-rb.org/t/typo-in-learn-factory-0-10-associations/631/1 "2024-01-02T13:03:42Z")

</div>

Hey, found a simple typo that confused me for a second.

```ruby
Factory.define(:group) do |f|
  f.name 'Admins'
end

Factory.define(:user) do |f|
  f.name 'John'
  f.association(:user)
end

```

In current state, this states that `user` **belongs\_to** `user.` It should belong to a **group,** so a simple change of `f.association(:user)` to `f.association(:group)`

> **[ROM](https://rom-rb.org/learn/factory/0.10/#associations)**
>
> An open-source persistence and mapping toolkit for Ruby built for speed and simplicity.

EDIT:  
I wanted to submit a quick PR for this, but after forking I saw that, the file for the docsite actually has that change [Fix some documentation · rom-rb/rom-factory@fab9dd5 · GitHub](https://github.com/rom-rb/rom-factory/commit/fab9dd5c7a01595bd851e4d232788882b49a7a53)  
However going to the actual site, the typo is still there. Was it simply never deployed or something?
